/* Background */
.exhibitions {
  background-color: rgb(21,70,153);

  background-image: url(../../images/backgrounds/smooth-blue-B2.jpg);

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Main Photo */
.main-photo {
  background-image: url("../../images/exhibitions/COBALT WAVES/2_dark-waves-abstract-artwork.jpg");
}

.extras {
  margin-top: 6em;
  margin-bottom: -4em;
}

.vtour:hover, .catalogue:hover {
  opacity: 0.4;
}

.vtour, .catalogue {
  /* border: 1px solid grey; */
  background-color: rgb(97, 180, 212);
  color: white;
  border-radius: 0%;
  width: 82px;
  height: 92px;
}

.vtour a, .catalogue a {
  color: white;
  text-align: center;
  font-size: 0.7rem;
  text-decoration: none;
  display: block;
  margin: auto;
  margin-top: 50%;
}

/* Description */
.color-text-box {
  position: relative;
  background: rgb(255, 192, 0);
  background: linear-gradient(-120deg, rgba(255, 192, 0, 1) 40%, rgba(205, 153, 0, 0.879) 100%);
  /* width: 140%; */
}

/* .color-text-box::before {
  position: absolute;
  content: url(images/exhibitions/COBALT WAVES/DSC_8828\ -\ Copy.jpg);
  transform: scale(0.4);
  left: -40em;
  top: -16em;
} */

.color-text-box p {
  color: rgb(74, 50, 50);
}

/* Video */
.overlayVideo {
  background-image: url("../../images/exhibitions/COBALT WAVES/testOverlay.png");
}

.video .caption p {
  color: white;
}

/*Press*/

.press h2 {
  text-align: center;
  justify-content: center;
  margin-left: 0;
  font-size: 1.1em;
  font-family: -windows, windowsSystemFont, Segoe UI, 'Roboto', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color:rgb(62, 100, 204);
}

.press {
  font-size: 0.9rem;
}

/* Photos Grid layout */
.custom-grid {
  display: grid;

  justify-content: end;
  align-items: stretch;
  column-gap: 15px;
  row-gap: 15px;

  /* grid-template-columns: (35% - 15px) 30% (35% - 15px);
  grid-template-rows: auto;
  grid-template-areas: 
    "p1 p2 p2"
    "p8 p4 p5"
    "p8 p6 p7"
    "p3 p3 p9"
    "p10 p11 p9"
    "p12 p12 p12"; */

  grid-template-columns: calc(25% - 15px) 25% calc(25% - 15px) 25%;
  grid-template-rows: repeat(5, 300px);
  grid-template-areas:
    "p2 p4 p5 p3"
    "p1 p1 p8 p8"
    "p1 p1 p6 p6"
    "p12 p12 p7 p9"
    "p10 p10 p11 p9";
}

/* Media Queries */
@media only screen and (max-width: 992px) {

  .left .custom-grid,
  .right .custom-grid {
    display: grid;
    justify-content: center;
    grid-template-columns: 100%;
    grid-template-rows: repeat(12, 300px);
    column-gap: 15px;
    row-gap: 15px;
    grid-template-areas:
      "p1"
      "p2"
      "p3"
      "p4"
      "p5"
      "p6"
      "p7"
      "p8"
      "p9"
      "p10"
      "p11"
      "p12";
  }
  
  .extras {
    justify-content: center;
  }
}